home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Ham Radio 2000 #2
/
Ham Radio 2000 - Volume 2.iso
/
HAMV2
/
MISC
/
COIL200
/
MAKEFILE.BOR
< prev
next >
Wrap
Text File
|
1996-09-29
|
738b
|
53 lines
#
# Unix makefile for inductance calculator
#
.c.obj:
tcc -c -ms -y -v $<
.asm.obj:
tasm -m3 -mx -zi $<
INCLUDE = c:\tc\include;.
LIB = c:\tc\lib
all: coil.exe tables.exe
coil.exe: coil.obj formulae.obj mathl.obj textrout.obj
tlink @&&|
/v /c /x +
$(LIB)\c0s.obj+
coil.obj+
formulae.obj+
mathl.obj+
textrout.obj
$<,$*
$(LIB)\emu.lib+
$(LIB)\maths.lib+
$(LIB)\cs.lib
|
tables.exe: tables.obj formulae.obj mathl.obj
tlink @&&|
/v /c /x +
$(LIB)\c0s.obj+
tables.obj+
formulae.obj+
mathl.obj
$<,$*
$(LIB)\emu.lib+
$(LIB)\maths.lib+
$(LIB)\cs.lib
|
coil.obj: coil.c
formulae.obj: formulae.c lyle.h
mathl.obj: mathl.c
tables.obj: tables.c
textrout.obj: textrout.asm